home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
snip9503
/
keylocks.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-03-14
|
321 b
|
23 lines
static volatile unsigned char _far *keyflags =
(unsigned char _far *)0x00400017;
void setcaps(void)
{
*keyflags |= 0x40;
}
void clrcaps(void)
{
*keyflags &= ~0x40;
}
void setnumlock(void)
{
*keyflags |= 0x20;
}
void clrnumlock(void)
{
*keyflags &= ~0x20;
}